HTMLify
index.html
Views: 388 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Three Number Game</title> <link rel="stylesheet" href="./style.css"> </head> <body> <!-- partial:index.partial.html --> <div class="container"> <div class="ctn-cyphers"> <div class="cypher-1"> <span> 1 </span> </div> <div class="cypher-2"> <span> 2 </span> </div> <div class="cypher-3"> <span> 3 </span> </div> </div> <div id="result" class="result"> <p> Round <span id="round" class="round"> 1: </span> <span class="content-result" id="content-result"> Click and get 3 equal Numbers </span> </p> </div> <div id="reset" class="reset"> <button type="button"></button> </div> </div> <!-- partial --> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script><script src="./script.js"></script> </body> </html> |